home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Programare / bluej / bluejsetup-200.exe / {app} / lib / korean / exception.help < prev    next >
Encoding:
Text File  |  2004-09-15  |  3.2 KB  |  125 lines

  1. NullPointerException*
  2. You tried to access an object (either a field
  3. in an object or a method of an object). This
  4. did not work because the object reference you
  5. used to access the object was 'null'. For
  6. example: You wrote "thing.print()", and "thing"
  7. was null at the time.
  8.  
  9. ArithmeticException*
  10. Something went wrong during an arithmetic
  11. calculation, such as a division by 0 or
  12. something similar.
  13.  
  14. StringIndexOutOfBoundsException*
  15. You have tried to access a character or a substring
  16. in a string , and the index you used does not exist
  17. in that string. For example, you may have tried to
  18. access the fifth character in a string that is only
  19. three characters long.
  20. For the substring operation, remember that the second
  21. parameter is the length of the substring, not the
  22. end index.
  23.  
  24. ClassCastException*
  25. You used a "cast" - that is an instruction assigning
  26. a different static type to an object, such as in this
  27. example:
  28.        (String)someObject
  29. Here, "someObject" is cast to "String". This is legal
  30. only if the object stored in someObject really is of
  31. type String.
  32. In other words: you can cast to type T only if the
  33. object you are casting is of type T or one of its
  34. subtypes. In your case it wasn't.
  35.  
  36. IndexOutOfBoundsException*
  37. An index of some sort (such as to an array, to a string,
  38. or to a vector) is out of range. "Out of range" means
  39. that the index does not exist in the array or other
  40. collection (e.g. you tried to access element 5, but only
  41. three elements exist).
  42.  
  43. ArrayIndexOutOfBoundsException*
  44. An array index is out of range. "Out of range" means
  45. that the index does not exist in the array (e.g. you
  46. tried to access element 5, but only three elements
  47. exist). The legal index range is 0..arraylength-1.
  48.  
  49. ConcurrentModificationException*
  50. You are doing an iteration over a collection here.
  51. While you are doing this, the collection was modified.
  52. That's a problem. You are not allowed to modify the
  53. collection during an iteration. Or the other way
  54. around: you cannot continue the iteration after
  55. modifying the collection. The only modification
  56. allowed during an iteration is removing elements with
  57. the Iterator's remove method (NOT the remove in the
  58. collection itself).
  59.  
  60. ArrayStoreException*
  61. No help available - sorry.
  62.  
  63. CannotRedoException*
  64. No help available - sorry.
  65.  
  66. CannotUndoException*
  67. No help available - sorry.
  68.  
  69. CMMException*
  70. No help available - sorry.
  71.  
  72. EmptyStackException*
  73. No help available - sorry.
  74.  
  75. IllegalArgumentException*
  76. No help available - sorry.
  77.  
  78. IllegalMonitorStateException*
  79. No help available - sorry.
  80.  
  81. IllegalPathStateException*
  82. No help available - sorry.
  83.  
  84. IllegalStateException*
  85. No help available - sorry.
  86.  
  87. ImagingOpException*
  88. No help available - sorry.
  89.  
  90. MissingResourceException*
  91. No help available - sorry.
  92.  
  93. NegativeArraySizeException*
  94. No help available - sorry.
  95.  
  96. NoSuchElementException*
  97. No help available - sorry.
  98.  
  99. ProfileDataException*
  100. No help available - sorry.
  101.  
  102. ProviderException*
  103. No help available - sorry.
  104.  
  105. RasterFormatException*
  106. No help available - sorry.
  107.  
  108. SecurityException*
  109. No help available - sorry.
  110.  
  111. SystemException*
  112. No help available - sorry.
  113.  
  114. UndeclaredThrowableException*
  115. No help available - sorry.
  116.  
  117. UnsupportedOperationException*
  118. No help available - sorry.
  119.  
  120. Exception
  121. This is a general exception that only says
  122. that something went wrong. I have no idea
  123. what it is...
  124.  
  125.